.footer-container{
	max-width: 99vw;
	margin:auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding-top: 20px;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #ffffff;
    padding: 10px;
    bottom: 0;
    /*position: fixed; fixed makes it sticky*/
    width: 100vw;
	border-top: 2px solid black;
    max-height: 11vw;
    align-items: center;
	z-index: 12;
}


.footer-logo .footer-information .footer-social {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	border: 2px solid blue;
}

.footer-information .footer-icon {
	padding-bottom: 2vh;
}

.footer-information .footer-icon i{
	color: #17B1C3;
	width: 7vw;
	height: 2vh;
	font-size: 1.2vw;
	position: absolute;
}

.footer-information .footer-icon i:hover{
	color: #17B1C3;
	scale: 1.3;
}

.footer-information .footer-icon p{
    font-size: 1vw;
	color: #3B3A3A;
	padding-left: 2.3vw;
}
/*.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #3B3A3A;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}*/

.footer-social{
	padding-top: 2vh;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-evenly;
	
}

.footer-social .footer-social-links i{
	font-size: 1.5vw; /*1.4*/
	padding-top: 8px;
}
.footer-social .footer-social-links a{
	display: inline-table;
	height: 45px; /*2.5vw & 2.5vh*/
	width: 45px;
	margin-right: 1rem;
	background-color: #17B1C3;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: white;
	transition: all 0.5s ease;
    align-items: end;
}
.footer-social-links a:hover{
	color: #ffffff;
	background-color: #CBEFF3;
	scale: 1.3;
}

/* Media Queries */

/* Media Queries for Footer Responsiveness */

/* Max-width: 980px */
@media screen and (max-width: 980px) {
    .footer-information .footer-icon p {
        font-size: 1.2rem;
		margin-left: 2%;
    }
    .footer-information .footer-icon i {
        font-size: 1.5rem; /* Adjust icon size */
    }
    .footer-social .footer-social-links i {
        font-size: 1.8rem;
    }
    .footer-social .footer-social-links a {
        height: 50px;
        width: 50px;
    }
}

/* Max-width: 860px */
@media screen and (max-width: 860px) {
    .footer-logo img {
        width: 200px;
        height: auto;
    }
    .footer-information .footer-icon p {
        font-size: 1rem;
		margin-left: 2%;
    }
    .footer-information .footer-icon i {
        font-size: 1.4rem; /* Adjust icon size */
    }
    .footer-social .footer-social-links a {
        height: 45px;
        width: 45px;
    }
}

/* Max-width: 820px */
@media screen and (max-width: 820px) {
    .footer-information .footer-icon p {
        font-size: 0.9rem;
		margin-left: 2%;
    }
    .footer-information .footer-icon i {
        font-size: 1.2rem; /* Adjust icon size */
    }
    .footer-social .footer-social-links i {
        font-size: 1.4rem;
    }
    .footer-social .footer-social-links a {
        height: 40px;
        width: 40px;
    }
}

/* Max-width: 760px */
@media screen and (max-width: 760px) {
    .footer-logo img {
        width: 180px;
        height: auto;
    }
    .footer-information .footer-icon p {
        font-size: 0.8rem;
		margin-left: 2%;
    }
    .footer-information .footer-icon i {
        font-size: 1rem; /* Adjust icon size */
    }
    .footer-social .footer-social-links a {
        height: 35px;
        width: 35px;
    }
}

/* Max-width: 430px */
@media screen and (max-width: 430px) {
    .footer-logo img {
        width: 150px;
        height: auto;
    }
    .footer-information .footer-icon p {
        font-size: 0.75rem;
		margin-left: 5%;
    }
    .footer-information .footer-icon i {
        font-size: 0.9rem; /* Adjust icon size */
    }
    .footer-social .footer-social-links a {
        height: 30px;
        width: 40px;
    }
}
